From: Christian Limpach Date: Thu, 12 Oct 2006 10:25:32 +0000 (+0100) Subject: [xenstore] Don't limit the number of concurrent transactions for domain0 connections X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~15615^2~15 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/%22bookmarks://%22/%22http:/www.example.com/cgi/%22https:/%22bookmarks:/%22?a=commitdiff_plain;h=88bea7620208b7e19ab417a597c190486ecc1336;p=xen.git [xenstore] Don't limit the number of concurrent transactions for domain0 connections since both xend and the xenstore-* utilities used in the hotplug scripts can easily reach the limit and we trust them anyway. Signed-off-by: Christian Limpach --- diff --git a/tools/xenstore/xenstored_transaction.c b/tools/xenstore/xenstored_transaction.c index fb20287f99..69cc520bb9 100644 --- a/tools/xenstore/xenstored_transaction.c +++ b/tools/xenstore/xenstored_transaction.c @@ -133,7 +133,7 @@ void do_transaction_start(struct connection *conn, struct buffered_data *in) return; } - if (conn->transaction_started > quota_max_transaction) { + if (conn->id && conn->transaction_started > quota_max_transaction) { send_error(conn, ENOSPC); return; }